home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / Developer University / DUProjects / Data / Sources / Pizza.h < prev    next >
Encoding:
Text File  |  1996-02-25  |  585 b   |  23 lines  |  [TEXT/CWIE]

  1. //    Copyright © 1995-96 Apple Computer, Inc. All rights reserved.
  2. //    Release Version:    $ ODF 1 $
  3.  
  4. #ifndef PIZZA_H
  5. #define PIZZA_H
  6.  
  7. //==========================================================================
  8. class FW_CRect;
  9. class CPizzaODFPart;
  10.  
  11. //==========================================================================
  12. class CPizza {
  13. public:
  14.                         CPizza(FW_CRect bounds);
  15.     virtual                ~CPizza();
  16.     virtual void        Draw(FW_CGraphicContext& gc);
  17.     FW_CRect            GetBounds();
  18. private:
  19.     FW_CRect            fBounds;
  20. };
  21.  
  22. //==========================================================================
  23. #endif